| Summary: Gets a screen object | Description: Gets a screen object that allows you to draw to the screen
**Note: Works out of game as of v0.41
**As of 0.44:
Added constructors to getScreenHook(); // see examples as follows, each param is optional
Base Syntax: getScreenHook( [String text [, int x [, int y [, int x2 [, int y2 [, int color [, int font [, int type [, int opacity]]]]]]]]] );
Example1: getScreenHook( "hello", 100, 100 ); // sets hello text screenhook to 100,100
Example2: getScreenHook( "", 50, 50, 75, 75, 0x20, 0, 1 ); // draws a box at 50,50,75,75, of white color and default opacity
Example3: getScreenHook( "text w/ diff font", 100, 100, -1, -1, 0, 4 ); // uses the #4 font instead of the default | Usable: [In Game] [Out of Game] |
|